建 React 時就有的 App.css
<-- 在 App.js 中 -->
import './App.css';
<div className="App">
<-- 在 App.css 中 -->
.App {
text-align: center;
}
對於 Ant Design Button 做 style 調整
<-- 離左邊Button 6 px -->
<Button type="primary">+1 Player</Button>
<Button style={{marginLeft:6}}>+2 Player</Button>
<div style={{width:"100%"}}>